home *** CD-ROM | disk | FTP | other *** search
- stop();
- onEnterFrame = function()
- {
- if(_parent._parent.pauses == false)
- {
- if(acted == false)
- {
- this.gotoAndPlay("attack");
- acted = true;
- }
- if(acted == true)
- {
- act_i++;
- if(act_i >= 90)
- {
- act_i = 0;
- acted = false;
- }
- }
- if(this._x <= 0 and dix == false)
- {
- dix = true;
- }
- else if(this._x >= 580 and dix == true)
- {
- dix = false;
- }
- if(dix == false and atking == false)
- {
- this._x -= spd;
- long += spd;
- this._xscale = 100;
- }
- else if(dix == true and atking == false)
- {
- this._x += spd;
- long += spd;
- this._xscale = -100;
- }
- }
- };
-